home *** CD-ROM | disk | FTP | other *** search
/ Freelog 100 / FreelogNo100-NovembreDecembre2010.iso / Musique / solfege / solfege-win32-3.17.0.exe / {app} / INSTALL.txt < prev    next >
Text File  |  2010-08-20  |  3KB  |  105 lines

  1. Table of Contents
  2. *****************
  3.  
  4. 1 INSTALL - how to compile and install GNU Solfege 3.17.0 on a GNU like system
  5.   1.1 Download
  6.     1.1.1 Source code
  7.     1.1.2 Precompiled binaries
  8.   1.2 Requirements
  9.   1.3 Configuring and compiling
  10.     1.3.1 `--disable-pygtk-test'
  11.     1.3.2 `--disable-oss-sound'
  12.  
  13.  
  14. 1 INSTALL - how to compile and install GNU Solfege 3.17.0 on a GNU like system
  15. ******************************************************************************
  16.  
  17. This file contains info on how to build and install GNU Solfege.  For
  18. run-time info, check the README file and the man page.
  19.  
  20.    The homepage for GNU Solfege, `http://www.solfege.org', might also
  21. be of interest.
  22.  
  23. 1.1 Download
  24. ============
  25.  
  26. 1.1.1 Source code
  27. -----------------
  28.  
  29. The latest version is available from
  30. `http://sourceforge.net/project/showfiles.php?group_id=1465'.
  31.  
  32.    The source code is also available from the GNU ftp sites and their
  33. mirrors: `ftp://alpha.gnu.org/gnu/solfege' and
  34. `ftp://ftp.gnu.org/gnu/solfege'.
  35.  
  36.    Solfege has a bzr repository at `http://solfege.org/bzr'.
  37.  
  38. 1.1.2 Precompiled binaries
  39. --------------------------
  40.  
  41. Precompiled binaries are made available for some releases. I build the
  42. windows installer, a linux distribution neutral autopackage for i386
  43. computers and the debian package myself. But I am depending on users to
  44. provide binaries for other operating systems. The debian package is
  45. available directly from `http://www.debian.org'.  The rest are
  46. available from Sourceforge:
  47. `http://sourceforge.net/project/showfiles.php?group_id=1465'.
  48.  
  49. 1.2 Requirements
  50. ================
  51.  
  52. The requirements are listed in the `README' file.
  53.  
  54. 1.3 Configuring and compiling
  55. =============================
  56.  
  57.      ./configure
  58.      make
  59.      su -c "make install"
  60.  
  61.    should work, and will install into
  62.  
  63.        /usr/local/bin
  64.        /usr/local/share
  65.        /usr/local/lib
  66.        /usr/local/etc/solfege
  67.  
  68.    On FreeBSD you can use gmake:
  69.  
  70.      ./configure
  71.      gmake
  72.      su -c "gmake install"
  73.  
  74.    Use the `--prefix' and `--sysconfdir' command line options to
  75. install elsewhere. For example to install in your home directory:
  76.  
  77.      ./configure --prefix=$HOME/usr --sysconfdir=$HOME/etc
  78.      make
  79.      make install
  80.  
  81.    If you just want to run Solfege without installing, do this:
  82.      ./configure
  83.      make
  84.      ./solfege.py
  85.  
  86.    The `configure' script can be given a number of options to enable
  87. and disable various features. Some of them are described below.  For a
  88. complete list, type:
  89.  
  90.      ./configure --help
  91.  
  92. 1.3.1 `--disable-pygtk-test'
  93. ----------------------------
  94.  
  95. Do not test for PyGTK, assume it is installed. Use this option if you
  96. know the package is installed, but the configure script still cannot
  97. detect it.
  98.  
  99. 1.3.2 `--disable-oss-sound'
  100. ---------------------------
  101.  
  102. Use this if you are compiling on an OS that don't have the OSS.  The
  103. default is `--enable-oss-sound'.
  104.  
  105.